home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 29 / PC Gamer IT CD 29 1-2.iso / MEDIA / UPDATE.DXR / fields_14_zList.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  403 b   |  22 lines

  1. on mouseDown
  2.   global gTB
  3.   puppetSound(2, 0)
  4.   puppetSound(2, "Click")
  5.   set ml to -999
  6.   repeat while the mouseDown
  7.     if (the mouseLine > 0) and (the mouseLine <> ml) then
  8.       set ml to the mouseLine
  9.       set err to mGo(gTB, ml)
  10.       CheckError(err, "mGo")
  11.       updateDisplay()
  12.       next repeat
  13.     end if
  14.     if the mouseLine < 0 then
  15.       pass()
  16.     end if
  17.   end repeat
  18. end
  19.  
  20. on mouseUp
  21. end
  22.